home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 July
/
PCWorld_2000-07_cd.bin
/
Software
/
Vyzkuste
/
scriptw
/
_SETUP.1
/
Pascal and Delphi Template.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-02-11
|
541b
|
29 lines
{ This is a Pascal/Delphi example for a new VCL component }
unit UnitName;
interface
uses
// Update to your own version of Delphi, for example Delphi 3:
// Windows, Messages, SysUtils, Classes, Graphics, Controls,
// Forms, Dialogs;
type
TClass = class(TDescendedFrom)
private
{ Private-Declarations }
public
{ Public-Declarations }
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('PageName', [TComponent1,TComponent2]);
end;
end.